home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000112_hkdevel@gmail.com_Mon Jun 6 11:11:59 2005.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!newsfeed.nyu.edu!newsfeed.news.ucla.edu!newsfeed.media.kyoto-u.ac.jp!newsfeed.icl.net!newsfeed.fjserv.net!newspump.monmouth.com!newspeer.monmouth.com!nntp.abs.net!news.maxwell.syr.edu!postnews.google.com!g14g2000cwa.googlegroups.com!not-for-mail
  2. From: hkdevel@gmail.com
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: convert lf -> lf/cr
  5. Date: 5 Jun 2005 10:28:37 -0700
  6. Organization: http://groups.google.com
  7. Lines: 20
  8. Message-ID: <1117992517.013684.143350@g14g2000cwa.googlegroups.com>
  9. References: <1117818075.712279.116900@o13g2000cwo.googlegroups.com>
  10.    <slrnda1j7o.2nu.fdc@sesame.cc.columbia.edu>
  11. NNTP-Posting-Host: 153.5.34.23
  12. Mime-Version: 1.0
  13. Content-Type: text/plain; charset="iso-8859-1"
  14. X-Trace: posting.google.com 1117992522 21009 127.0.0.1 (5 Jun 2005 17:28:42 GMT)
  15. X-Complaints-To: groups-abuse@google.com
  16. NNTP-Posting-Date: Sun, 5 Jun 2005 17:28:42 +0000 (UTC)
  17. In-Reply-To: <slrnda1j7o.2nu.fdc@sesame.cc.columbia.edu>
  18. User-Agent: G2/0.2
  19. Complaints-To: groups-abuse@google.com
  20. Injection-Info: g14g2000cwa.googlegroups.com; posting-host=153.5.34.23;
  21.    posting-account=PMx-WA0AAAANDuyYjZmKt8IdDwqAHmgG
  22. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15351
  23.  
  24.  
  25.  
  26. > Just stuff a CR before passing on the LF:
  27. >
  28. >             if (c == LF && tt_crd) { /* SET TERM CR-DISPLA CRLF? */
  29. >                 ckcputc(CR); /* Yes, output CR first */
  30. >                 if (seslog && !sessft) logchar((char)CR);
  31. >             }
  32. >
  33. > bearing in mind that then you will have a hacked version in which SET TERM
  34. > CR-DISPLAY really means SET TERM LF-DISPLAY.  When the next release (or daily
  35. > edit) appears, it will have the new command and you can throw your version out
  36. > and use the new one.
  37. >
  38.  
  39. Thank  you for this quick&dirty hack help. It does just what I wanted!
  40.  
  41. regards,
  42. hk
  43.